Linux webm002.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
xml-sitemap-feed
/
views
/
/home/ariannadhf/www/wp-content/plugins/xml-sitemap-feed/views/feed-sitemap.php
<?php /** * XML Sitemap Index Feed Template * * @package XML Sitemap Feed plugin for WordPress */ defined( 'WPINC' ) || die; // Do xml tag via echo or SVN parser is going to freak out. echo '<?xml version="1.0" encoding="' . esc_xml( esc_attr( get_bloginfo( 'charset' ) ) ) . '"?>' . PHP_EOL; echo '<?xml-stylesheet type="text/xsl" href="' . esc_url( wp_make_link_relative( XMLSF\get_stylesheet_url() ) ) . '?ver=' . esc_xml( XMLSF_VERSION ) . '"?>' . PHP_EOL; ?> <?php do_action( 'xmlsf_generator' ); ?> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <?php do_action( 'xmlsf_sitemap_index' ); $post_types = xmlsf()->sitemap->get_post_types(); // Post types. foreach ( $post_types as $the_post_type ) : $settings = xmlsf()->sitemap->post_type_settings( $the_post_type ); $archive_type = isset( $settings['archive'] ) ? $settings['archive'] : ( is_post_type_hierarchical( $the_post_type ) ? '' : 'yearly' ); $archive_data = apply_filters( 'xmlsf_index_archive_data', array(), $the_post_type, $archive_type ); foreach ( $archive_data as $url => $lastmod ) { echo '<sitemap><loc>' . esc_url( $url ) . '</loc>'; if ( $lastmod ) { echo '<lastmod>' . esc_xml( get_date_from_gmt( $lastmod, DATE_W3C ) ) . '</lastmod>'; } echo '</sitemap>' . PHP_EOL; } endforeach; $disabled = get_option( 'xmlsf_disabled_providers', XMLSF\get_default_settings( 'disabled_providers' ) ); // Public taxonomies. if ( empty( $disabled ) || ! in_array( 'taxonomies', (array) $disabled, true ) ) { $taxonomies = xmlsf()->sitemap->get_taxonomies(); foreach ( $taxonomies as $the_taxonomy ) : $settings = (array) get_option( 'xmlsf_taxonomy_settings' ); $defaults = XMLSF\get_default_settings( 'taxonomy_settings' ); $limit = ! empty( $settings['limit'] ) && $settings['limit'] > 1 && $settings['limit'] < 50000 ? $settings['limit'] : $defaults['limit']; $args = apply_filters( 'xmlsf_taxonomies_query_args', array( 'taxonomy' => $the_taxonomy, 'number' => $limit, 'hide_empty' => true, 'hierarchical' => false, 'update_term_meta_cache' => false, ), $the_taxonomy ); if ( wp_count_terms( $args ) ) { $url = xmlsf()->sitemap->get_sitemap_url( 'taxonomy', array( 'type' => $the_taxonomy ) ); $lastmod = xmlsf()->sitemap->get_taxonomy_modified( $the_taxonomy ); echo '<sitemap><loc>' . esc_xml( $url ) . '</loc>'; if ( $lastmod ) { echo '<lastmod>' . esc_xml( get_date_from_gmt( $lastmod, DATE_W3C ) ) . '</lastmod>'; } echo '</sitemap>' . PHP_EOL; } endforeach; } // Authors. if ( empty( $disabled ) || ! in_array( 'users', (array) $disabled, true ) ) { echo '<sitemap><loc>' . esc_xml( xmlsf()->sitemap->get_sitemap_url( 'author' ) ) . '</loc>'; $lastmod = get_lastpostdate( 'GMT', 'post' ); if ( $lastmod ) { echo '<lastmod>' . esc_xml( get_date_from_gmt( $lastmod, DATE_W3C ) ) . '</lastmod>'; } echo '</sitemap>' . PHP_EOL; } // Custom URLs sitemap. if ( apply_filters( 'xmlsf_custom_urls', get_option( 'xmlsf_urls' ) ) ) { echo '<sitemap><loc>' . esc_xml( xmlsf()->sitemap->get_sitemap_url( 'custom' ) ) . '</loc></sitemap>' . PHP_EOL; } // Custom sitemaps. $custom_sitemaps = apply_filters( 'xmlsf_custom_sitemaps', get_option( 'xmlsf_custom_sitemaps', array() ) ); if ( is_array( $custom_sitemaps ) ) : foreach ( $custom_sitemaps as $url ) { if ( empty( $url ) ) { continue; } echo '<sitemap><loc>' . esc_url( $url ) . '</loc></sitemap>' . PHP_EOL; } endif; do_action( 'xmlsf_sitemap_index_after' ); ?> </sitemapindex>